home *** CD-ROM | disk | FTP | other *** search
- Page 60,132
- Title SETMODE -- Set Mode E for GRAPH16 BASIC example.
- Subttl Thomas V. Hoffmann, January 1985
-
- Code segment para public 'code'
- public SetMode
- SetMode proc far
-
- Mov ax,000EH ; Set 320 by 200, 16 color mode
- Int 10H
-
- Ret ; Return to BASIC
-
- SetMode Endp
- Code Ends
- End
-